home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 110 / EnigmaAmiga110CD.iso / dalla rivista / host contacted / wbstartup+.lha / WBStartup+ / Source / WBStartup+OS3.5 / ProgressWindow.h < prev    next >
C/C++ Source or Header  |  2000-02-25  |  914b  |  18 lines

  1. struct ProgressWindowData *CreateProgressWindow(struct WBStartupPrefs *prefs);
  2. void CloseProgressWindow(struct ProgressWindowData *data);
  3. void UpdateProgressBar(struct Window *win, int current, int total, const WORD fill);
  4. void ShowIconImage(struct ProgressWindowData *data, struct DiskObject *disk_obj_p);
  5. BOOL LoadBitmap(struct WBStartupPrefs *prefs, struct ProgressWindowData *data, struct Screen *scr);
  6. BOOL InteractiveRunProgram(struct Window *win);
  7. void DisplayProgramName(struct ProgressWindowData *data, char *name, BOOL query);
  8. void SetFill (struct WBStartupPrefs *prefs_p);
  9.  
  10. struct ProgressWindowData
  11. {
  12.   struct Window *win;    /* This is the window, duhh */
  13.   struct BitMap *bitmap; /* This is the bitmap for our background */
  14.   struct BitMap *iconundobitmap;     /* bitmap to clear the icons with */
  15.   struct BitMap *filenameundobitmap; /* bitmap to clear the filenames in interactive mode with */
  16. };
  17.  
  18.